Skip to content

Conversation

renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Feb 27, 2023

This PR contains the following updates:

Package Change Age Confidence
com.google.googlejavaformat:google-java-format 1.7 -> 1.28.0 age confidence

Release Notes

google/google-java-format (com.google.googlejavaformat:google-java-format)

v1.28.0

Compare Source

This release contains no formatting changes.

Releases (including snapshots) have migrated from OSSRH to the Central Publisher Portal.

Full Changelog: google/google-java-format@v1.27.0...v1.28.0

v1.27.0

Compare Source

This release contains no formatting changes.

Changes:

Full Changelog: google/google-java-format@v1.26.0...v1.27.0

v1.26.0

Compare Source

Formatting changes:

  • Text blocks: don't automatically deindent long text blocks to start at column 0. For text blocks that are already deindented, the existing choice will be preserved, but it won't happen automatically.
  • Text blocks: for deindented text blocks, put the opening """ at column 0 instead of indenting it

Changes:

  • The published GraalVM native-image binaries now include a binary for Linux arm64

Full Changelog: google/google-java-format@v1.25.2...v1.26.0

v1.25.2

Compare Source

Changes:

  • Fix a crash formatting text blocks involving trailing whitespace before the close delimiter (#​1205)

Full Changelog: google/google-java-format@v1.25.1...v1.25.2

v1.25.1

Compare Source

Changes:

  • Fix a crash in text block formatting (#​1195)

Full Changelog: google/google-java-format@v1.25.0...v1.25.1

v1.25.0

Compare Source

The minimum support JDK version to run google-java-format is now JDK 17 (#​1159). Using google-java-format to format earlier versions of the language is still supported, but running the formatter itself on JDK 17 or newer is required.

Changes:

  • Various improvements to text block formatting
  • Improve formatting of when pattern guards

Full Changelog: google/google-java-format@v1.24.0...v1.25.0

v1.24.0

Compare Source

Changes:

Full Changelog: google/google-java-format@v1.23.0...v1.24.0

v1.23.0

Compare Source

Changes:

Full Changelog: google/google-java-format@v1.22.0...v1.23.0

v1.22.0

Compare Source

Changes:

  • Improve support for tokens that span multiple lines (9bdae02)
  • Fix an issue with text block formatting, when the text block is the receiver of a method call (#​1081)
  • google-java-format-diff.py now parallelizes the calls to the formatter, for better performance (3ee6e2a)

Full Changelog: google/google-java-format@v1.21.0...v1.22.0

v1.21.0

Compare Source

Formatting changes:

  • Adjust indentation of text blocks (ce3cb59)

Bug fixes:

  • Fix a crash with comments inside string templates (e946e82)
  • Native image -version reports HEAD-SNAPSHOT instead of the correct version (#​1068)
  • Improve compatibility with older glibc versions (#​1072)

Full Changelog: google/google-java-format@v1.20.0...v1.21.0

v1.20.0

Compare Source

This release includes GraalVM native-image binaries for google-java-format for windows, linux, and mac. These binaries offer improved startup performance.

Changes:

  • Keep type-use annotation with type when wrapping (03efe44)
  • Handle 'any' patterns (#​1037)

Full Changelog: google/google-java-format@v1.19.2...v1.20.0

v1.19.2

Compare Source

Changes
  • Improve support for string templates (#​1010)
  • Handle var in record patterns (#​1020)

Full Changelog: google/google-java-format@v1.19.1...v1.19.2

v1.19.1

Compare Source

Changes
  • Fix support for Java 21 features by enabling JDK 21 for release builds (#​1014).

Full Changelog: google/google-java-format@v1.19.0...v1.19.1

v1.19.0

Compare Source

Changes

This release adds initial support for more Java 21 features, including:

Other changes:

  • Handle type annotations on method reference qualifiers (53390d9)
  • Avoid reflowing text blocks (#​976)

Full Changelog: google/google-java-format@v1.18.1...v1.19.0

v1.18.1

Compare Source

Changes
  • Fixed version number for Eclipse plugin (#​744)

Full Changelog: google/google-java-format@v1.18.0...v1.18.1

v1.18.0

Compare Source

Changes

Full Changelog: google/google-java-format@v1.17.0...v1.18.0

v1.17.0

Compare Source

Changes

  • Fix compatibility with OpenJDK 21 early access builds (#​898)

Full Changelog: google/google-java-format@v1.16.0...v1.17.0

v1.16.0

Compare Source

Changes

Bug fixes

  • Return a non-zero exit code on error (#​848)
  • Formatter leaks threads and memory (#​847)

Full Changelog: google/google-java-format@v1.15.0...v1.16.0

v1.15.0

Compare Source

What's Changed

Full Changelog: google/google-java-format@v1.14.0...v1.15.0

v1.14.0: 1.14.0

Compare Source

What's Changed

  • Handle modifiers that start with non- (#​696)
  • Treat single-character upper case identifiers as UpperCamelCase, to improve formatting of Android R classes (16e72a1)
  • Don't format javadoc without a summary fragment as a single-line (668f108)

Full Changelog: google/google-java-format@v1.13.0...v1.14.0

v1.13.0: 1.13.0

Compare Source

What's Changed

  • Fix formatting of pattern matching in switch when running on Java 17 (#​689, #​690)

Full Changelog: google/google-java-format@v1.12.0...v1.13.0

v1.12.0: 1.12.0

Compare Source

What's Changed

Full Changelog: google/google-java-format@v1.11.0...v1.12.0

v1.11.0: 1.11.0

Compare Source

google-java-format now has improved support for running on JDK 17 early access builds.

Changes:

  • Handle final variables in instanceof patterns (#​588)
  • Fix handling of annotations in compact record constructors (#​574)
  • Fix a crash in instanceof pattern handling (#​594)
  • Wrap multiple values in switch expression case (#​540)
  • Fix formatting of module trees after JDK-8255464
  • Support sealed classes (#​603)

v1.10.0: 1.10.0

google-java-format now supports running on JDK 16. The following flags are required when running on JDK 16, due to JEP 396: Strongly Encapsulate JDK Internals by Default:

java \
  --add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED \
  --add-exports jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED \
  --add-exports jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED \
  --add-exports jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED \
  --add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED \
  -jar google-java-format-1.10.0-all-deps.jar T...

Other changes:


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate-bot renovate-bot requested a review from a team as a code owner February 27, 2023 23:19
@product-auto-label product-auto-label bot added the size: xs Pull request size is extra small. label Feb 27, 2023
@trusted-contributions-gcf trusted-contributions-gcf bot added kokoro:force-run Add this label to force Kokoro to re-run the tests. owlbot:run Add this label to trigger the Owlbot post processor. labels Feb 27, 2023
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Feb 27, 2023
@renovate-bot renovate-bot changed the title deps: update dependency com.google.googlejavaformat:google-java-format to v1.16.0 deps: update dependency com.google.googlejavaformat:google-java-format to v1.17.0 May 1, 2023
@renovate-bot renovate-bot force-pushed the renovate/com.google.googlejavaformat-google-java-format-1.x branch from 14f64df to 012650e Compare May 1, 2023 21:25
@trusted-contributions-gcf trusted-contributions-gcf bot added the owlbot:run Add this label to trigger the Owlbot post processor. label May 1, 2023
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label May 1, 2023
@renovate-bot renovate-bot force-pushed the renovate/com.google.googlejavaformat-google-java-format-1.x branch from 012650e to 73331da Compare May 28, 2023 12:26
@trusted-contributions-gcf trusted-contributions-gcf bot added the owlbot:run Add this label to trigger the Owlbot post processor. label May 28, 2023
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label May 28, 2023
@renovate-bot renovate-bot changed the title deps: update dependency com.google.googlejavaformat:google-java-format to v1.17.0 deps: update dependency com.google.googlejavaformat:google-java-format to v1.18.0 Oct 2, 2023
@renovate-bot renovate-bot force-pushed the renovate/com.google.googlejavaformat-google-java-format-1.x branch from 73331da to ab82254 Compare October 2, 2023 23:22
@trusted-contributions-gcf trusted-contributions-gcf bot added the owlbot:run Add this label to trigger the Owlbot post processor. label Oct 2, 2023
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Oct 2, 2023
@renovate-bot renovate-bot changed the title deps: update dependency com.google.googlejavaformat:google-java-format to v1.18.0 deps: update dependency com.google.googlejavaformat:google-java-format to v1.18.1 Oct 5, 2023
@renovate-bot renovate-bot force-pushed the renovate/com.google.googlejavaformat-google-java-format-1.x branch from ab82254 to 033341f Compare October 5, 2023 18:39
@trusted-contributions-gcf trusted-contributions-gcf bot added the owlbot:run Add this label to trigger the Owlbot post processor. label Oct 5, 2023
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Oct 5, 2023
@renovate-bot renovate-bot force-pushed the renovate/com.google.googlejavaformat-google-java-format-1.x branch from 033341f to 029e64a Compare December 19, 2023 07:53
@renovate-bot renovate-bot changed the title deps: update dependency com.google.googlejavaformat:google-java-format to v1.18.1 deps: update dependency com.google.googlejavaformat:google-java-format to v1.19.0 Dec 19, 2023
@trusted-contributions-gcf trusted-contributions-gcf bot added the owlbot:run Add this label to trigger the Owlbot post processor. label Dec 19, 2023
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Dec 19, 2023
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Dec 19, 2023
@renovate-bot renovate-bot force-pushed the renovate/com.google.googlejavaformat-google-java-format-1.x branch from 029e64a to 37d1686 Compare December 19, 2023 19:26
@renovate-bot renovate-bot changed the title deps: update dependency com.google.googlejavaformat:google-java-format to v1.19.0 deps: update dependency com.google.googlejavaformat:google-java-format to v1.19.1 Dec 19, 2023
@trusted-contributions-gcf trusted-contributions-gcf bot added kokoro:force-run Add this label to force Kokoro to re-run the tests. owlbot:run Add this label to trigger the Owlbot post processor. labels Dec 19, 2023
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Dec 19, 2023
@trusted-contributions-gcf trusted-contributions-gcf bot added the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Jan 23, 2025
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Jan 23, 2025
@renovate-bot renovate-bot force-pushed the renovate/com.google.googlejavaformat-google-java-format-1.x branch from df6fc5e to f3c901d Compare February 4, 2025 20:25
@dpebot
Copy link

dpebot commented Feb 4, 2025

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf bot added the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Feb 4, 2025
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Feb 4, 2025
@renovate-bot renovate-bot force-pushed the renovate/com.google.googlejavaformat-google-java-format-1.x branch from f3c901d to 93de1c5 Compare March 3, 2025 17:27
@dpebot
Copy link

dpebot commented Mar 3, 2025

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf bot added the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Mar 3, 2025
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Mar 3, 2025
@renovate-bot renovate-bot changed the title deps: update dependency com.google.googlejavaformat:google-java-format to v1.25.2 deps: update dependency com.google.googlejavaformat:google-java-format to v1.26.0 Mar 27, 2025
@renovate-bot renovate-bot force-pushed the renovate/com.google.googlejavaformat-google-java-format-1.x branch from 93de1c5 to 0b260de Compare March 27, 2025 22:43
@dpebot
Copy link

dpebot commented Mar 27, 2025

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf bot added the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Mar 27, 2025
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Mar 27, 2025
@renovate-bot renovate-bot force-pushed the renovate/com.google.googlejavaformat-google-java-format-1.x branch from 0b260de to 33cf531 Compare April 30, 2025 11:42
@dpebot
Copy link

dpebot commented Apr 30, 2025

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf bot added the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Apr 30, 2025
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Apr 30, 2025
@renovate-bot renovate-bot force-pushed the renovate/com.google.googlejavaformat-google-java-format-1.x branch from 33cf531 to 58d3c86 Compare May 7, 2025 03:59
@renovate-bot renovate-bot changed the title deps: update dependency com.google.googlejavaformat:google-java-format to v1.26.0 deps: update dependency com.google.googlejavaformat:google-java-format to v1.27.0 May 7, 2025
@dpebot
Copy link

dpebot commented May 7, 2025

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf bot added the kokoro:force-run Add this label to force Kokoro to re-run the tests. label May 7, 2025
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label May 7, 2025
@renovate-bot renovate-bot force-pushed the renovate/com.google.googlejavaformat-google-java-format-1.x branch from 58d3c86 to 573d4f9 Compare July 10, 2025 03:00
@renovate-bot renovate-bot changed the title deps: update dependency com.google.googlejavaformat:google-java-format to v1.27.0 deps: update dependency com.google.googlejavaformat:google-java-format to v1.28.0 Jul 10, 2025
@dpebot
Copy link

dpebot commented Jul 10, 2025

/gcbrun

@trusted-contributions-gcf trusted-contributions-gcf bot added the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Jul 10, 2025
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Jul 10, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
size: xs Pull request size is extra small.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants